home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2004 September / maximum-cd-2004-09.iso / Software / Apps / CorelDRAWGraphicsSuite12.exe / CorelDRAW Graphics Suite 12.msi / Binary.NewBinary26 < prev    next >
Encoding:
Text File  |  2004-01-07  |  901 b   |  20 lines

  1. Const msiNoAction = -1
  2. Const msiInstallStateAdvertise = 1
  3. Const msiInstallStateAbsent = 2
  4. Const msiInstallStateLocal = 3
  5. Const msiInstallStateSource = 4
  6. Const msiInstallStateDefault = 5
  7.  
  8.  
  9. If (Session.FeatureRequestState("Draw") = msiInstallStateAbsent) And _
  10.    (Session.FeatureRequestState("PP") = msiInstallStateAbsent) And _
  11.    (Session.FeatureRequestState("Rave") = msiInstallStateAbsent) And _
  12.    (Session.FeatureRequestState("Trace") = msiInstallStateAbsent) And _
  13.    (Session.FeatureRequestState("Capture") = msiInstallStateAbsent) And _
  14.    (Session.FeatureRequestState("Utilities") = msiInstallStateAbsent) And _
  15.    (Session.FeatureRequestState("Filters") = msiInstallStateAbsent) And _ 
  16.    (Session.FeatureRequestState("WritingTools") = msiInstallStateAbsent) Then
  17.        Session.Property("NOFEATURESELECTED") = "1" 
  18. Else
  19.        Session.Property("NOFEATURESELECTED") = "0"
  20. End If